How to recognize which "case" is being echoed by switch statement
am 22.02.2008 12:01:49 von Tim Daff--Apple-Mail-7--114873320
Content-Type: text/plain;
charset=US-ASCII;
format=flowed;
delsp=yes
Content-Transfer-Encoding: 7bit
Hi,
This is my first time using php in my site navigation, I have the code
for all the pages in one file and I am using the switch statement to
change between them.
This is working great but I am now trying to change the css id of the
current page's navbar link. How do I get my script to recognize which
case is currently being echoed by the switch statement?
If you want to see the page in action without php in the navbar visit
here: http://www.publikdesign.com
Here is the code:
switch($_GET['page']) {
case "contact":
echo "
break;
case "portfolio":
echo "
alt=\"Portfolio\" />
Development Lofo\" />
\"Katmandog Logo\" />
\"Island Healing Logo\" />
\"Roaming Earth Logo\" />
break;
case "home":
echo "
Design Services\" width=\"327\" height=\"28\" />
Publik provides a full range of graphic design
services, from business cards and letterheaders, to product catalogues
and promotional brochures. We will bring your project from concept to
print in the most cost effective and professional manner.
\" />
The world wide web has grown into the most
powerful marketing tool available to a business. From a concreter to a
department store, the internet can not be overlooked as an important
tool in bringing clients to your business. Publik Design provides all
manner of web services from static pages to fully dynamic web
applications.
Business Card Design\" />
\"Katmandog Pet Shop Thumbnail\" />
break;
case "kdev":
echo "
alt=\"Portfolio\" />
\"K Development\" />
break;
case "isl":
echo "
\"Portfolio\" />
\"K Development\" />
break;
case "re":
echo "
\"Portfolio\" />
Development\" />
break;
default:
echo "
Design Services\" width=\"327\" height=\"28\" />
Publik provides a full range of graphic design
services, from business cards and letterheaders, to product catalogues
and promotional brochures. We will bring your project from concept to
print in the most cost effective and professional manner.
\" />
The world wide web has grown into the most
powerful marketing tool available to a business. From a concreter to a
department store, the internet can not be overlooked as an important
tool in bringing clients to your business. Publik Design provides all
manner of web services from static pages to fully dynamic web
applications.
Business Card Design\" />
\"Katmandog Pet Shop Thumbnail\" />
break;
}
?>
--Apple-Mail-7--114873320--